While tmem has gotten limited testing with a 32-bit Xen, it
has severe limitations due to 32-bit heap restrictions.
So, turn it off by default for 32-bit so nobody accidentally
runs into this.
Signed-off by: Dan Magenheimer <dan.magenheimer@oracle.com>
#define EXPORT /* indicates code other modules are dependent upon */
+#ifdef __x86_64__
EXPORT int opt_tmem = 1;
+#else
+EXPORT int opt_tmem = 0;
+#endif
boolean_param("tmem", opt_tmem);
EXPORT int opt_tmem_compress = 0;